home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 December / Australian PC User - December 2003 (CD2).iso / software / apps / files / dwmx2k4.exe / Disk1 / data1.cab / Configuration_En / Objects / Layout / Tabular Data.js < prev    next >
Encoding:
JavaScript  |  2003-09-05  |  765 b   |  21 lines

  1. // Copyright 2000, 2001, 2002, 2003 Macromedia, Inc. All rights reserved.
  2.  
  3. //---------------     API FUNCTIONS    ---------------
  4.  
  5. function isDOMRequired() { 
  6.     // Return false, indicating that this object is available in code view.
  7.     // This means this object/command is guaranteed to not use the DOM of the current document,
  8.     // except for dw.getDocumentDOM().source...
  9.     return false;
  10. }
  11.  
  12. function objectTag(){
  13.    var importCommand = dreamweaver.getConfigurationPath() + "/Commands/Tabular Data.htm";
  14.    var importCommandDOM = dreamweaver.getDocumentDOM(importCommand);
  15.    
  16.    importCommandDOM.getElementsByTagName("TITLE").item(0).innerHTML = 
  17.       TITLE_Insert_Tabular_Data;
  18.    
  19.    dreamweaver.popupCommand("Tabular Data.htm");
  20.    return '';
  21. }